From 631806a20fa212139119e987cc14fb7273e0c786 Mon Sep 17 00:00:00 2001 From: Johan Dahlin Date: Wed, 4 Jul 2007 03:49:33 +0000 Subject: [PATCH] pack children from the start instead of the end, this should probably be 2007-07-04 Johan Dahlin * gtk/gtkcelllayout.c (_gtk_cell_layout_buildable_add_child): pack children from the start instead of the end, this should probably be made configurable at some point. svn path=/trunk/; revision=18374 --- ChangeLog | 4 ++++ gtk/gtkcelllayout.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 563a1bd90e..5c6d5935f9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2007-07-04 Johan Dahlin + * gtk/gtkcelllayout.c (_gtk_cell_layout_buildable_add_child): + pack children from the start instead of the end, this should + probably be made configurable at some point. + * gtk/gtk-builder-convert: Add support for converting GtkComboBox items, also make sure that we support more than one GtkAdjustment in a file diff --git a/gtk/gtkcelllayout.c b/gtk/gtkcelllayout.c index 7ec9356945..970ec954df 100644 --- a/gtk/gtkcelllayout.c +++ b/gtk/gtkcelllayout.c @@ -433,8 +433,8 @@ _gtk_cell_layout_buildable_add_child (GtkBuildable *buildable, g_return_if_fail (GTK_IS_CELL_RENDERER (child)); iface = GTK_CELL_LAYOUT_GET_IFACE (buildable); - g_return_if_fail (iface->pack_end != NULL); - iface->pack_end (GTK_CELL_LAYOUT (buildable), GTK_CELL_RENDERER (child), FALSE); + g_return_if_fail (iface->pack_start != NULL); + iface->pack_start (GTK_CELL_LAYOUT (buildable), GTK_CELL_RENDERER (child), FALSE); } #define __GTK_CELL_LAYOUT_C__ -- 2.30.2